home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / spatial / Imakefile < prev    next >
Makefile  |  1995-05-03  |  1KB  |  35 lines

  1. # The next lines define the directories where the executable, piece file,
  2. # and score file are installed. Change them to whatever is appropriate.
  3. INSTDIR = /usr/skunk
  4. DESTLIBDIR = $(INSTDIR)/lib
  5. DESTBINDIR = $(INSTDIR)/bin
  6. MANDIR = /usr/man/man.CONTRIB
  7. MANSUFFIX = CONTRIB
  8.  
  9. SCOREFILE = $(DESTLIBDIR)/spatial.sco
  10. PIECEFILE = $(DESTLIBDIR)/spatial.shp
  11.  
  12. DEFINES =
  13.  
  14. # uncomment the next line if your system doesn't have
  15. # random() and srandom()
  16. DEFINES = -Drandom=lrand48 -Dsrandom=srand48 -DUSELOCKF \
  17.     -DSCOREFILENAME=\"$(SCOREFILE)\" -DPIECEFILENAME=\"$(PIECEFILE)\"
  18.  
  19. # uncomment the next line for Solaris, which has neither
  20. # flock() nor random().
  21. #DEFINES = -DUSELOCKF -Drandom=lrand48 -Dsrandom=srand48 \
  22. #    -DSCOREFILENAME=\"$(SCOREFILE)\" -DPIECEFILENAME=\"$(PIECEFILE)\"
  23.  
  24. OBJS = spatial.o disp.o game.o rots.o intro.o deco.o score.o
  25.  
  26. LOCAL_LIBRARIES = $(XLIB)
  27. SYS_LIBRARIES = -lm
  28.  
  29. ComplexProgramTarget(spatial)
  30. InstallNonExecFile(spatial.shp,$(DESTLIBDIR))
  31.  
  32. install:: install.man spatial.sco
  33.     MakeDir($(DESTDIR)$(DESTLIBDIR))
  34.     $(INSTALL) -c -m 0666 spatial.sco $(DESTDIR)$(DESTLIBDIR)
  35.